home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- :---This BAT file is called by INSTALLE, but may run independently
- :--- %1 is drive FROM, %2 is drive TO, %3 er directory
- if "%1" == "" goto syntaks
- if "%2" == "" goto syntaks
- if "%3" == "" goto syntaks
- %2:
- cd \
- md %3
- cd %3
- echo.
- echo Biorhythm program will be installed:
- echo ------------------------------------
- echo from drive %1: to drive %2:\%3
- echo Press a key to start installation - or Ctrl-C to stop.
- pause > nul
- echo.
- echo Installing - please wait ...
- echo ----------------------------
- %1:bio410e -o
- echo.
- echo Copying other files ...
- copy %1:regnr.txt
- :-copy %1:files.txt
- cls
- echo.
- echo Installation of Biorhythm program is finished!
- echo.
- echo Write BIO and press Enter to start the program.
- echo === -----
- goto end
-
- :syntaks
- echo To install the Biorhythm program, type: INSTALL and press Enter
- echo =======
- echo.
- echo - OR write:
- echo.
- echo INSTBIOe (from drive) (to drive) (directory)
- echo E.g.: INSTBIOe A C BIO4
- echo NB: No colons after drive name (A, C etc.). - No \.
-
- :end